runtime.schedt.runq (field)

20 uses

	runtime (current package)
		metrics.go#L851: 	a.gRunnable += uint64(sched.runq.size)
		proc.go#L3136: 	if !runqempty(pp) || !sched.runq.empty() {
		proc.go#L3175: 	if !sched.runq.empty() {
		proc.go#L3443: 	if pp.schedtick%61 == 0 && !sched.runq.empty() {
		proc.go#L3474: 	if !sched.runq.empty() {
		proc.go#L3599: 	if !sched.runq.empty() {
		proc.go#L3677: 		if !sched.runq.empty() {
		proc.go#L3805: 	if !sched.runq.empty() {
		proc.go#L6906: 	print("SCHED ", (now-starttime)/1e6, "ms: gomaxprocs=", gomaxprocs, " idleprocs=", sched.npidle.Load(), " threads=", mcount(), " spinningthreads=", sched.nmspinning.Load(), " needspinning=", sched.needspinning.Load(), " idlethreads=", sched.nmidle, " runqueue=", sched.runq.size)
		proc.go#L7252: 	sched.runq.pushBack(gp)
		proc.go#L7263: 	sched.runq.push(gp)
		proc.go#L7275: 	sched.runq.pushBackAll(*batch)
		proc.go#L7284: 	if sched.runq.size == 0 {
		proc.go#L7288: 	return sched.runq.pop()
		proc.go#L7296: 	if sched.runq.size == 0 {
		proc.go#L7300: 	n = min(n, sched.runq.size, sched.runq.size/gomaxprocs+1)
		proc.go#L7302: 	gp = sched.runq.pop()
		proc.go#L7306: 		gp1 := sched.runq.pop()
		runtime2.go#L958: 	runq gQueue